home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / packet / p_aa4re / bb212src / bpqhost.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1991-11-22  |  805 b   |  27 lines

  1.  
  2.   CONST
  3.     bpq_open                   = 1;    (* BPQ function codes in AH *)
  4.     bpq_send_frame             = 2;
  5.     bpq_recv_frame             = 3;
  6.     bpq_status                 = 4;
  7.     bpq_ack_status             = 5;
  8.     bpq_cmd                    = 6;
  9.     bpq_get_counts             = 7;
  10.     bpq_get_call               = 8;
  11.     bpq_send_kiss              = 10;
  12.     bpq_monitor                = 11;
  13.  
  14.     bpq_cmd_connect            = 1;    (* BPQ command codes for AL *)
  15.     bpq_cmd_disconnect         = 2;
  16.  
  17.     bpq_status_connect         = 1;
  18.     bpq_status_disconnect      = 0;
  19.  
  20.     bpq_appl_flag_command      = $01;
  21.     bpq_appl_flag_sendcon_user = $02;
  22.     bpq_appl_flag_sendcon_appl = $04;
  23.  
  24.     bpq_appl_mask_bbs          = $01;
  25.     bpq_appl_mask_monitor      = $80;
  26.  
  27.